home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
apps
/
math
/
ols.zoo
/
miscstri.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-04-16
|
182b
|
12 lines
/* Miscellanous string routines */
char *
strdup (char *s)
{
char *tmp;
tmp = (char *) malloc ((1 + strlen (s)) * sizeof (char));
strcpy (tmp, s);
return tmp;
}